Index
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form
P
- parent(int) - Method in class edu.claflin.finder.algo.clustering.struct.girvan_newman_struct.MapBinaryHeap
- parseAlgorithm(String, HashMap<String, Boolean>, ArrayList<Condition>, Comparator<Edge>) - Static method in class edu.claflin.finder.Main
-
Parses an algorithm code string for returning the appropriate Algorithm object.
- parseBoolean(String) - Static method in class edu.claflin.finder.Main
-
Parses a boolean string for configuring the {}.
- parseGraph(File, boolean) - Method in class edu.claflin.finder.io.graph.SIFGraphIO
-
Reads a graph from memory.
- parseGraph(File, boolean) - Method in class edu.claflin.finder.io.graph.SimpleGraphIO
-
Reads a graph from memory.
- parseGraph(File, boolean) - Method in interface edu.claflin.finder.io.graph.sub.GraphReader
-
Reads a graph from memory.
- parseManifest(File) - Static method in class edu.claflin.finder.io.ManifestParser
-
Parses the provided manifest file.
- parseManifest(String) - Static method in class edu.claflin.finder.io.ManifestParser
-
Parses the provided manifest file.
- partiteNumber - Variable in class edu.claflin.finder.algo.Algorithm
-
Number passed in using partite number.
- partitionNumbers - Static variable in class edu.claflin.finder.logic.cygrouper.Communicator
- path - Static variable in class edu.claflin.finder.log.LogUtil
-
TEST
- peek() - Method in class edu.claflin.finder.algo.clustering.struct.fast_greedy_struct.IndexedHeapQueue
- peek() - Method in class edu.claflin.finder.algo.clustering.struct.girvan_newman_struct.MapBinaryHeap
- percolateDown(int) - Method in class edu.claflin.finder.algo.clustering.struct.girvan_newman_struct.MapBinaryHeap
- percolateUp(int, T) - Method in class edu.claflin.finder.algo.clustering.struct.girvan_newman_struct.MapBinaryHeap
- plus(Matrix) - Method in class edu.claflin.finder.algo.clustering.struct.leading_eigenvector_struct.Matrix
-
C = A + B
- plusEquals(Matrix) - Method in class edu.claflin.finder.algo.clustering.struct.leading_eigenvector_struct.Matrix
-
A = A + B
- poll() - Method in class edu.claflin.finder.algo.clustering.struct.fast_greedy_struct.IndexedHeapQueue
- poll() - Method in class edu.claflin.finder.algo.clustering.struct.girvan_newman_struct.MapBinaryHeap
- Prim - Class in edu.claflin.finder.algo.spanningtree
- Prim(ArgumentsBundle) - Constructor for class edu.claflin.finder.algo.spanningtree.Prim
-
Public constructor for initializing the Prim with default conditions.
- Prim.DistanceRecord - Class in edu.claflin.finder.algo.spanningtree
- Prim.DistanceRecordComparator - Class in edu.claflin.finder.algo.spanningtree
- print(int, int) - Method in class edu.claflin.finder.algo.clustering.struct.leading_eigenvector_struct.Matrix
-
Print the matrix to stdout.
- print(PrintWriter, int, int) - Method in class edu.claflin.finder.algo.clustering.struct.leading_eigenvector_struct.Matrix
-
Print the matrix to the output stream.
- print(PrintWriter, NumberFormat, int) - Method in class edu.claflin.finder.algo.clustering.struct.leading_eigenvector_struct.Matrix
-
Print the matrix to the output stream.
- print(NumberFormat, int) - Method in class edu.claflin.finder.algo.clustering.struct.leading_eigenvector_struct.Matrix
-
Print the matrix to stdout.
- printNodeMap(Map) - Method in class edu.claflin.finder.logic.cygrouper.CygrouperAssembler
- PrioritySet<T> - Class in edu.claflin.finder.struct
-
Represents a PrioritySet.
- PrioritySet(boolean) - Constructor for class edu.claflin.finder.struct.PrioritySet
-
Public constructor for initializing a PrioritySet.
- PrioritySet(Comparator<T>, boolean) - Constructor for class edu.claflin.finder.struct.PrioritySet
-
Public constructor for initializing a PrioritySet.
- process(Graph) - Method in class edu.claflin.finder.algo.BreadthFirstTraversalSearch
-
Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.BronKerbosch
-
Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.Bundle
-
Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.FastGreedy
-
Performs FastGreedy community detection on a given Graph, returning the clustering with the maximum modularity.
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.GirvanNewman
-
Performs Edge Betweenness community detection with Girvan-Newman algorithm a given Graph, returning the clustering with the maximum modularity.
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.Infomap
-
Performs community detection using the InfoMap algorithm
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.LabelPropagation
-
Performs Label Propagation (LPA) community detection on a given Graph, returning the significant communities present within a network.
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.LeadingEigenvector
-
Performs community detection using Mark Newman's Leading Eigenvector algorithm on a given Graph object, returning the clustering the highest approximated modularity.
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.Louvain
-
Performs community detection using the Louvain algorithm
- process(Graph) - Method in class edu.claflin.finder.algo.clustering.Walktrap
- process(Graph) - Method in class edu.claflin.finder.algo.ConnectedComponentsDFS
-
Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.DepthFirstTraversalSearch
-
Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.MatrixPatternAnalyzer
-
Deprecated.Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.shortestpath.DijkstraShortestPath
- process(Graph) - Method in class edu.claflin.finder.algo.shortestpath.ShortestPath
- process(Graph) - Method in class edu.claflin.finder.algo.spanningtree.Kruskal
-
Processes data.
- process(Graph) - Method in class edu.claflin.finder.algo.spanningtree.Prim
-
Processes data.
- process(T) - Method in interface edu.claflin.finder.logic.processor.Processable
-
Processes data.
- Processable<T,
S> - Interface in edu.claflin.finder.logic.processor -
Represents an operation that can be carried out on a specific type of data.
- processManifest(ArrayList<String>) - Static method in class edu.claflin.finder.io.ManifestParser
-
Processes the ArrayList of Strings collected by the readManifest() method.
- processMultiple(T[], Processable<T, S>) - Method in class edu.claflin.finder.logic.processor.BatchProcessor
-
Processes multiple files.
- processSingular(T, Processable<T, S>) - Method in class edu.claflin.finder.logic.processor.BatchProcessor
-
Processes a singular object.
- progress - Variable in class edu.claflin.finder.algo.Algorithm
-
The current progress of the algorithm.
- PROP_PROGRESS - Static variable in class edu.claflin.finder.algo.Algorithm
-
Constant for indicating the progress property.
- propertyChange(PropertyChangeEvent) - Method in class edu.claflin.finder.algo.Bundle
- ps - Variable in class edu.claflin.finder.algo.clustering.struct.infomap_struct.InfomapAlgorithm
- putBoolean(String, Boolean) - Method in class edu.claflin.finder.algo.ArgumentsBundle
-
Puts a boolean in the booleanList.
- putDouble(String, Double) - Method in class edu.claflin.finder.algo.ArgumentsBundle
-
Puts a double in the doubleList.
- putEnum(String, Enum<?>) - Method in class edu.claflin.finder.algo.ArgumentsBundle
-
Puts an enum in the enumList.
- putInteger(String, Integer) - Method in class edu.claflin.finder.algo.ArgumentsBundle
-
Puts an integer in the integerList.
- putObject(String, Object) - Method in class edu.claflin.finder.algo.ArgumentsBundle
-
Puts an object in the enumList.
- Pv - Variable in class edu.claflin.finder.algo.clustering.Walktrap
All Classes and Interfaces|All Packages|Constant Field Values|Serialized Form